home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / SYMBOL / Symbol Processors / Fill / fill-rest next >
Text File  |  1998-10-23  |  542b  |  14 lines

  1. fill-rest symbol-pattern fill-symbols
  2.  
  3. fill-rest replaces the rests in a symbol-pattern with the symbols it takes sequentically from a fill-symbols list. A new symbol-pattern is returned.  If there exists a backround of two synths and a third one is to be added, the two synths can be symbol-mixed and fill-rested to form a new instrument.
  4.  
  5. (fill-rest '(a b = d f = g) 'r)
  6. --> (= = r = = r =)
  7.  
  8. (fill-rest '(a b = d e = g = = =) '(a b c d))
  9. --> (= = a = = b = c d a)
  10.  
  11. (fill-rest '(a b = d e = g = = =) '(a b c = d))
  12. --> (= = a = = b = c = d)
  13.  
  14.